001 /**
002 * Created by IntelliJ IDEA.
003 * User: Wei Wang
004 * Date: Apr 1, 2003
005 * Time: 1:44:55 AM
006 */
007
008 package EVolve.exceptions;
009
010 public class NoDataPlotException extends EVolveException{
011 public NoDataPlotException() {
012 super("No data is to be plotted, please try:\n" +
013 "Check the field setting in current selection OR\n" +
014 "Check the data source.");
015 }
016
017 }